aa22952368532b04565c411d8eecc30d306c73c4,jetty-spdy/spdy-jetty-http/src/main/java/org/eclipse/jetty/spdy/http/ServerHTTPSPDYAsyncConnectionFactory.java,HTTPServerFrameListener,onSyn,#Stream#SynInfo#,87
Before Change
channel.beginRequest(headers);
if (synInfo.isClose())
{
channel.endRequest();
return null;
After Change
return this;
}
//TODO: beginRequest does two things, startRequest and close...should be doing one only?!
channel.beginRequest(headers, synInfo.isClose());
if (synInfo.isClose())
return null;